gpu: host1x: Fix compiler errors by converting to dma_addr_t
authorEmil Goode <emil.fsw@goode.io>
Wed, 16 May 2018 10:22:04 +0000 (12:22 +0200)
committerSalvatore Bonaccorso <carnil@debian.org>
Sat, 18 Aug 2018 12:02:58 +0000 (13:02 +0100)
commite6f6e8831d2d4c576c00492d4cf1e3999adfd721
treec85e07b6919cae8a53232ce92b94ee6303e461c0
parentaf2318495d63f15f947ec41e63de0897f7f53896
gpu: host1x: Fix compiler errors by converting to dma_addr_t

The compiler is complaining with the following errors:

drivers/gpu/host1x/cdma.c:94:48: error:
passing argument 3 of ‘dma_alloc_wc’ from incompatible pointer type
[-Werror=incompatible-pointer-types]

drivers/gpu/host1x/cdma.c:113:48: error:
passing argument 3 of ‘dma_alloc_wc’ from incompatible pointer type
[-Werror=incompatible-pointer-types]

The expected pointer type of the third argument to dma_alloc_wc() is
dma_addr_t but phys_addr_t is passed.

Change the phys member of struct push_buffer to be dma_addr_t so that we
pass the correct type to dma_alloc_wc().
Also check pb->mapped for non-NULL in the destroy function as that is the
right way of checking if dma_alloc_wc() was successful.

Signed-off-by: Emil Goode <emil.fsw@goode.io>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Gbp-Pq: Topic bugfix/arm
Gbp-Pq: Name gpu-host1x-fix-compiler-errors-by-converting-to-dma_.patch
drivers/gpu/host1x/cdma.c
drivers/gpu/host1x/cdma.h